All Packages Class Hierarchy This Package Previous Next Index
Class quicktime.std.qtcomponents.SoundCompressionDialog
java.lang.Object
|
+----quicktime.QTObject
|
+----quicktime.std.comp.ComponentIdentifier
|
+----quicktime.std.comp.Component
|
+----quicktime.std.qtcomponents.CompressionDialog
|
+----quicktime.std.qtcomponents.SoundCompressionDialog
- public final class SoundCompressionDialog
- extends CompressionDialog
- implements QuickTimeLib
This class represents the standard compression dialog for sound.
-
SoundCompressionDialog()
- Opens the CompressionDialog component.
-
getInfoChannelCount()
- Retrieves the current channel count for a dialog.
-
getInfoCompression()
- Retrieves the current compression type for a dialog.
-
getInfoCompressionList()
- Retrieves the current compression type list for a dialog.
-
getInfoSampleRate()
- Retrieves the current sample rate for a dialog.
-
getInfoSampleSize()
- Retrieves the current sample size for a dialog.
-
setInfoChannelCount(int)
- Sets the current channel count for a dialog.
-
setInfoCompression(int)
- Sets the current compression type for a dialog.
-
setInfoCompressionList(int[])
- Sets the current list of compression types for a dialog.
-
setInfoSampleRate(float)
- Sets the current sample rate for a dialog.
-
setInfoSampleSize(int)
- Sets the current sample size for a dialog.
SoundCompressionDialog
public SoundCompressionDialog() throws QTException
- Opens the CompressionDialog component.
getInfoSampleRate
public float getInfoSampleRate() throws StdQTException
- Retrieves the current sample rate for a dialog.
QuickTime::SCGetInfo()
- Returns:
- the sample rate
setInfoSampleRate
public void setInfoSampleRate(float rate) throws StdQTException
- Sets the current sample rate for a dialog.
QuickTime::SCSetInfo()
- Parameters:
- rate - the new sample rate
getInfoSampleSize
public int getInfoSampleSize() throws StdQTException
- Retrieves the current sample size for a dialog.
QuickTime::SCGetInfo()
- Returns:
- the sample size
setInfoSampleSize
public void setInfoSampleSize(int size) throws StdQTException
- Sets the current sample size for a dialog.
QuickTime::SCSetInfo()
- Parameters:
- size - the new sample size
getInfoChannelCount
public int getInfoChannelCount() throws StdQTException
- Retrieves the current channel count for a dialog.
QuickTime::SCGetInfo()
- Returns:
- the channel count
setInfoChannelCount
public void setInfoChannelCount(int n) throws StdQTException
- Sets the current channel count for a dialog.
QuickTime::SCSetInfo()
- Parameters:
- n - the new channel count
setInfoCompression
public void setInfoCompression(int compType) throws StdQTException
- Sets the current compression type for a dialog.
QuickTime::SCSetInfo()
- Parameters:
- compType - the new compression type
getInfoCompression
public int getInfoCompression() throws StdQTException
- Retrieves the current compression type for a dialog.
QuickTime::SCGetInfo()
- Returns:
- the compression
setInfoCompressionList
public void setInfoCompressionList(int compTypes[]) throws StdQTException
- Sets the current list of compression types for a dialog.
QuickTime::SCSetInfo()
- Parameters:
- compTypes - the new compression types, if null then show all available compression options.
getInfoCompressionList
public int[] getInfoCompressionList() throws StdQTException
- Retrieves the current compression type list for a dialog.
QuickTime::SCGetInfo()
- Returns:
- the compression list
All Packages Class Hierarchy This Package Previous Next Index